home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-09-17 | 1.0 KB | 36 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: FWResTyp.h
- // Release Version: $ ODF 2 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef FWRESTYP_H
- #define FWRESTYP_H
-
- //========================================================================================
- // Constants
- //========================================================================================
-
- // need names for both long and short resource types in resources
-
- #define FW_kWMultiStringRes 257
- #define FW_kLMultiStringRes 'MSTR'
- #define FW_kWMultiLongRes 258
- #define FW_kLMultiLongRes 'MLNG'
- #define FW_kLBitmapRes 'BMAP'
-
- #ifdef FW_BUILD_MAC
- #define FW_kMultiStringRes FW_kLMultiStringRes
- #define FW_kMultiLongRes FW_kLMultiLongRes
- #endif
-
- #ifdef FW_BUILD_WIN
- #define FW_kMultiStringRes FW_kWMultiStringRes
- #define FW_kMultiLongRes FW_kWMultiLongRes
- #endif
-
- #endif
-